home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen… 1994 February Supplement / ARPL-Feb-94-Supplement-PowerPC.iso / 3rd Party PowerPC Demo Apps / Diehl Graphsoft MiniCad-E / MiniCad 5 Demo (Click Me!) / MiniCad 5 Demo (Click Me!).rsrc / STR#_7016.txt < prev    next >
Encoding:
Text File  |  1994-01-18  |  2.1 KB  |  85 lines

  1. FObject : Handle;
  2.  
  3. Returns a handle to  the first object in the active document.
  4.  
  5. LObject : Handle;
  6.  
  7. Returns a handle to  the last object in the active document.
  8.  
  9. FActLayer : Handle;
  10.  
  11. Returns a handle to the first object on the active layer.
  12.  
  13. FSActLayer : Handle;
  14.  
  15. Return a handle to the first selected object on the active layer.
  16.  
  17. LSActLayer : Handle;
  18.  
  19. Return a handle to the last selected object on the active layer.
  20.  
  21. ActSSheet : Handle;
  22.  
  23. Returns a handle to the currently active spreadsheet.
  24.  
  25. GetObject(Name : STRING) : Handle;
  26.  
  27. Returns a handle to the object with the given name.
  28.  
  29. FLayer : Handle;
  30.  
  31. Returns a handle to the first layer in a drawing.
  32.  
  33. LLayer : Handle;
  34.  
  35. Returns a handle to the last layer in a drawing.
  36.  
  37. ActLayer : Handle;
  38.  
  39. Returns a handle to the currently active layer.
  40.  
  41. FSObject(h : Handle) : Handle;
  42.  
  43. Returns a handle to the first selected object on the layer specified by h.
  44.  
  45. GetLayer(h : Handle) : Handle;
  46.  
  47. Receives a handle to a graphic object and returns a handle to its corresponding layer.
  48.  
  49. FSymDef : Handle;
  50.  
  51. Returns a handle to the first object in the current document‚Äôs symbol library.
  52.  
  53. FInGroup(h : Handle) : Handle;
  54.  
  55. Receives a handle to a group and returns a handle to the first object inside the group.
  56.  
  57. FIn3D(h : Handle) : Handle;
  58.  
  59. Receives a handle to a 3D object and returns a handle to the first object inside the 3D object.
  60.  
  61. FInSymDef(h : Handle) : Handle;
  62.  
  63. Receives a handle to a symbol definition in a symbol library and returns a handle to the first object within the symbol definition.
  64.  
  65. FInLayer(h : Handle) : Handle;
  66.  
  67. Receives a handle to a layer and returns the handle to the first object on that layer.
  68.  
  69. FInFolder(h : Handle) : Handle;
  70.  
  71. Receives a handle to a folder within the symbol library and returns a handle to the first object within that folder.
  72.  
  73. PickObject(X, Y : REAL) : Handle;
  74.  
  75. Returns a handle to the topmost object that contains the point (X, Y).
  76.  
  77. LNewObj : Handle;
  78.  
  79. Returns a handle to the last object created in MiniPascal. Returns nil if no objects have been created yet.
  80.  
  81. ActSymDef : Handle;
  82.  
  83. Returns a handle to the currently active symbol.
  84.  
  85.